Uitwisselprofiel ActiZ Belangenbehartiging
Over Uitwisselprofiel ActiZ Belangenbehartiging
- Publicatiedatum:
- 08-04-2026
- Inwerkingtreding:
- 08-04-2026
3.3. Wat is het aantal bezette wooneenheden?
Concepten
Relaties
- deel van
- deel van
- geïdentificeerd door
- heeft eigenschap of kenmerk
- heeft eigenschapswaarde
- vestiging van
Eigenschappen
SPARQL query
Code gekopieerd
...Kopieer naar klembord
1# Indicator: Actiz 3.3 2# Parameters: - 3# Ontologie: versie 2.2.0 of nieuwer 4 5PREFIX onz-org: <http://purl.org/ozo/onz-org#> 6PREFIX onz-g: <http://purl.org/ozo/onz-g#> 7PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> 8 9SELECT 10 (?vestiging AS ?Indeling) 11 (COUNT(DISTINCT ?wooneenheid) AS ?Aantal_bezette_wooneenheden) 12WHERE { 13 ?wooneenheid a onz-org:WoonEenheid ; 14 onz-g:partOf ?locatie . 15 16 filter exists { 17 ?wooneenheid onz-g:hasQuality ?OccQual . 18 ?OccQual a onz-g:OccupancyQuality . 19 ?OccQual onz-g:hasQualityValue ?occQualV . 20 } 21 22 { 23 ?locatie a onz-g:StationaryArtifact ; 24 onz-g:partOf* ?vestiging_uri . 25 ?vestiging_uri a onz-org:Vestiging . 26 27 { 28 ?vestiging_uri onz-g:identifiedBy ?vest_nr . 29 ?vest_nr a onz-org:Vestigingsnummer ; 30 onz-g:hasDataValue ?vestiging . 31 } UNION { 32 # Includeer ook de organisatie als geheel en label deze als vestiging 33 ?vestiging_uri onz-org:vestigingVan ?organisatie_uri . 34 BIND("Totaal organisatie" AS ?vestiging) 35 } 36 } 37} 38GROUP BY ?vestiging 39ORDER BY ?vestiging 40